home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2004 #2 / K-CD-2-2004.ISO / OpenOffice Sv / f_0397 / python-core-2.2.2 / lib / rfc822.py < prev    next >
Encoding:
Python Source  |  2003-07-18  |  32.5 KB  |  1,011 lines

  1. """RFC 2822 message manipulation.
  2.  
  3. Note: This is only a very rough sketch of a full RFC-822 parser; in particular
  4. the tokenizing of addresses does not adhere to all the quoting rules.
  5.  
  6. Note: RFC 2822 is a long awaited update to RFC 822.  This module should
  7. conform to RFC 2822, and is thus mis-named (it's not worth renaming it).  Some
  8. effort at RFC 2822 updates have been made, but a thorough audit has not been
  9. performed.  Consider any RFC 2822 non-conformance to be a bug.
  10.  
  11.     RFC 2822: http://www.faqs.org/rfcs/rfc2822.html
  12.     RFC 822 : http://www.faqs.org/rfcs/rfc822.html (obsolete)
  13.  
  14. Directions for use:
  15.  
  16. To create a Message object: first open a file, e.g.:
  17.  
  18.   fp = open(file, 'r')
  19.  
  20. You can use any other legal way of getting an open file object, e.g. use
  21. sys.stdin or call os.popen().  Then pass the open file object to the Message()
  22. constructor:
  23.  
  24.   m = Message(fp)
  25.  
  26. This class can work with any input object that supports a readline method.  If
  27. the input object has seek and tell capability, the rewindbody method will
  28. work; also illegal lines will be pushed back onto the input stream.  If the
  29. input object lacks seek but has an `unread' method that can push back a line
  30. of input, Message will use that to push back illegal lines.  Thus this class
  31. can be used to parse messages coming from a buffered stream.
  32.  
  33. The optional `seekable' argument is provided as a workaround for certain stdio
  34. libraries in which tell() discards buffered data before discovering that the
  35. lseek() system call doesn't work.  For maximum portability, you should set the
  36. seekable argument to zero to prevent that initial \code{tell} when passing in
  37. an unseekable object such as a a file object created from a socket object.  If
  38. it is 1 on entry -- which it is by default -- the tell() method of the open
  39. file object is called once; if this raises an exception, seekable is reset to
  40. 0.  For other nonzero values of seekable, this test is not made.
  41.  
  42. To get the text of a particular header there are several methods:
  43.  
  44.   str = m.getheader(name)
  45.   str = m.getrawheader(name)
  46.  
  47. where name is the name of the header, e.g. 'Subject'.  The difference is that
  48. getheader() strips the leading and trailing whitespace, while getrawheader()
  49. doesn't.  Both functions retain embedded whitespace (including newlines)
  50. exactly as they are specified in the header, and leave the case of the text
  51. unchanged.
  52.  
  53. For addresses and address lists there are functions
  54.  
  55.   realname, mailaddress = m.getaddr(name)
  56.   list = m.getaddrlist(name)
  57.  
  58. where the latter returns a list of (realname, mailaddr) tuples.
  59.  
  60. There is also a method
  61.  
  62.   time = m.getdate(name)
  63.  
  64. which parses a Date-like field and returns a time-compatible tuple,
  65. i.e. a tuple such as returned by time.localtime() or accepted by
  66. time.mktime().
  67.  
  68. See the class definition for lower level access methods.
  69.  
  70. There are also some utility functions here.
  71. """
  72. # Cleanup and extensions by Eric S. Raymond <esr@thyrsus.com>
  73.  
  74. import time
  75.  
  76. __all__ = ["Message","AddressList","parsedate","parsedate_tz","mktime_tz"]
  77.  
  78. _blanklines = ('\r\n', '\n')            # Optimization for islast()
  79.  
  80.  
  81. class Message:
  82.     """Represents a single RFC 2822-compliant message."""
  83.  
  84.     def __init__(self, fp, seekable = 1):
  85.         """Initialize the class instance and read the headers."""
  86.         if seekable == 1:
  87.             # Exercise tell() to make sure it works
  88.             # (and then assume seek() works, too)
  89.             try:
  90.                 fp.tell()
  91.             except (AttributeError, IOError):
  92.                 seekable = 0
  93.             else:
  94.                 seekable = 1
  95.         self.fp = fp
  96.         self.seekable = seekable
  97.         self.startofheaders = None
  98.         self.startofbody = None
  99.         #
  100.         if self.seekable:
  101.             try:
  102.                 self.startofheaders = self.fp.tell()
  103.             except IOError:
  104.                 self.seekable = 0
  105.         #
  106.         self.readheaders()
  107.         #
  108.         if self.seekable:
  109.             try:
  110.                 self.startofbody = self.fp.tell()
  111.             except IOError:
  112.                 self.seekable = 0
  113.  
  114.     def rewindbody(self):
  115.         """Rewind the file to the start of the body (if seekable)."""
  116.         if not self.seekable:
  117.             raise IOError, "unseekable file"
  118.         self.fp.seek(self.startofbody)
  119.  
  120.     def readheaders(self):
  121.         """Read header lines.
  122.  
  123.         Read header lines up to the entirely blank line that terminates them.
  124.         The (normally blank) line that ends the headers is skipped, but not
  125.         included in the returned list.  If a non-header line ends the headers,
  126.         (which is an error), an attempt is made to backspace over it; it is
  127.         never included in the returned list.
  128.  
  129.         The variable self.status is set to the empty string if all went well,
  130.         otherwise it is an error message.  The variable self.headers is a
  131.         completely uninterpreted list of lines contained in the header (so
  132.         printing them will reproduce the header exactly as it appears in the
  133.         file).
  134.         """
  135.         self.dict = {}
  136.         self.unixfrom = ''
  137.         self.headers = list = []
  138.         self.status = ''
  139.         headerseen = ""
  140.         firstline = 1
  141.         startofline = unread = tell = None
  142.         if hasattr(self.fp, 'unread'):
  143.             unread = self.fp.unread
  144.         elif self.seekable:
  145.             tell = self.fp.tell
  146.         while 1:
  147.             if tell:
  148.                 try:
  149.                     startofline = tell()
  150.                 except IOError:
  151.                     startofline = tell = None
  152.                     self.seekable = 0
  153.             line = self.fp.readline()
  154.             if not line:
  155.                 self.status = 'EOF in headers'
  156.                 break
  157.             # Skip unix From name time lines
  158.             if firstline and line.startswith('From '):
  159.                 self.unixfrom = self.unixfrom + line
  160.                 continue
  161.             firstline = 0
  162.             if headerseen and line[0] in ' \t':
  163.                 # It's a continuation line.
  164.                 list.append(line)
  165.                 x = (self.dict[headerseen] + "\n " + line.strip())
  166.                 self.dict[headerseen] = x.strip()
  167.                 continue
  168.             elif self.iscomment(line):
  169.                 # It's a comment.  Ignore it.
  170.                 continue
  171.             elif self.islast(line):
  172.                 # Note! No pushback here!  The delimiter line gets eaten.
  173.                 break
  174.             headerseen = self.isheader(line)
  175.             if headerseen:
  176.                 # It's a legal header line, save it.
  177.                 list.append(line)
  178.                 self.dict[headerseen] = line[len(headerseen)+1:].strip()
  179.                 continue
  180.             else:
  181.                 # It's not a header line; throw it back and stop here.
  182.                 if not self.dict:
  183.                     self.status = 'No headers'
  184.                 else:
  185.                     self.status = 'Non-header line where header expected'
  186.                 # Try to undo the read.
  187.                 if unread:
  188.                     unread(line)
  189.                 elif tell:
  190.                     self.fp.seek(startofline)
  191.                 else:
  192.                     self.status = self.status + '; bad seek'
  193.                 break
  194.  
  195.     def isheader(self, line):
  196.         """Determine whether a given line is a legal header.
  197.  
  198.         This method should return the header name, suitably canonicalized.
  199.         You may override this method in order to use Message parsing on tagged
  200.         data in RFC 2822-like formats with special header formats.
  201.         """
  202.         i = line.find(':')
  203.         if i > 0:
  204.             return line[:i].lower()
  205.         else:
  206.             return None
  207.  
  208.     def islast(self, line):
  209.         """Determine whether a line is a legal end of RFC 2822 headers.
  210.  
  211.         You may override this method if your application wants to bend the
  212.         rules, e.g. to strip trailing whitespace, or to recognize MH template
  213.         separators ('--------').  For convenience (e.g. for code reading from
  214.         sockets) a line consisting of \r\n also matches.
  215.         """
  216.         return line in _blanklines
  217.  
  218.     def iscomment(self, line):
  219.         """Determine whether a line should be skipped entirely.
  220.  
  221.         You may override this method in order to use Message parsing on tagged
  222.         data in RFC 2822-like formats that support embedded comments or
  223.         free-text data.
  224.         """
  225.         return None
  226.  
  227.     def getallmatchingheaders(self, name):
  228.         """Find all header lines matching a given header name.
  229.  
  230.         Look through the list of headers and find all lines matching a given
  231.         header name (and their continuation lines).  A list of the lines is
  232.         returned, without interpretation.  If the header does not occur, an
  233.         empty list is returned.  If the header occurs multiple times, all
  234.         occurrences are returned.  Case is not important in the header name.
  235.         """
  236.         name = name.lower() + ':'
  237.         n = len(name)
  238.         list = []
  239.         hit = 0
  240.         for line in self.headers:
  241.             if line[:n].lower() == name:
  242.                 hit = 1
  243.             elif not line[:1].isspace():
  244.                 hit = 0
  245.             if hit:
  246.                 list.append(line)
  247.         return list
  248.  
  249.     def getfirstmatchingheader(self, name):
  250.         """Get the first header line matching name.
  251.  
  252.         This is similar to getallmatchingheaders, but it returns only the
  253.         first matching header (and its continuation lines).
  254.         """
  255.         name = name.lower() + ':'
  256.         n = len(name)
  257.         list = []
  258.         hit = 0
  259.         for line in self.headers:
  260.             if hit:
  261.                 if not line[:1].isspace():
  262.                     break
  263.             elif line[:n].lower() == name:
  264.                 hit = 1
  265.             if hit:
  266.                 list.append(line)
  267.         return list
  268.  
  269.     def getrawheader(self, name):
  270.         """A higher-level interface to getfirstmatchingheader().
  271.  
  272.         Return a string containing the literal text of the header but with the
  273.         keyword stripped.  All leading, trailing and embedded whitespace is
  274.         kept in the string, however.  Return None if the header does not
  275.         occur.
  276.         """
  277.  
  278.         list = self.getfirstmatchingheader(name)
  279.         if not list:
  280.             return None
  281.         list[0] = list[0][len(name) + 1:]
  282.         return ''.join(list)
  283.  
  284.     def getheader(self, name, default=None):
  285.         """Get the header value for a name.
  286.  
  287.         This is the normal interface: it returns a stripped version of the
  288.         header value for a given header name, or None if it doesn't exist.
  289.         This uses the dictionary version which finds the *last* such header.
  290.         """
  291.         try:
  292.             return self.dict[name.lower()]
  293.         except KeyError:
  294.             return default
  295.     get = getheader
  296.  
  297.     def getheaders(self, name):
  298.         """Get all values for a header.
  299.  
  300.         This returns a list of values for headers given more than once; each
  301.         value in the result list is stripped in the same way as the result of
  302.         getheader().  If the header is not given, return an empty list.
  303.         """
  304.         result = []
  305.         current = ''
  306.         have_header = 0
  307.         for s in self.getallmatchingheaders(name):
  308.             if s[0].isspace():
  309.                 if current:
  310.                     current = "%s\n %s" % (current, s.strip())
  311.                 else:
  312.                     current = s.strip()
  313.             else:
  314.                 if have_header:
  315.                     result.append(current)
  316.                 current = s[s.find(":") + 1:].strip()
  317.                 have_header = 1
  318.         if have_header:
  319.             result.append(current)
  320.         return result
  321.  
  322.     def getaddr(self, name):
  323.         """Get a single address from a header, as a tuple.
  324.  
  325.         An example return value:
  326.         ('Guido van Rossum', 'guido@cwi.nl')
  327.         """
  328.         # New, by Ben Escoto
  329.         alist = self.getaddrlist(name)
  330.         if alist:
  331.             return alist[0]
  332.         else:
  333.             return (None, None)
  334.  
  335.     def getaddrlist(self, name):
  336.         """Get a list of addresses from a header.
  337.  
  338.         Retrieves a list of addresses from a header, where each address is a
  339.         tuple as returned by getaddr().  Scans all named headers, so it works
  340.         properly with multiple To: or Cc: headers for example.
  341.         """
  342.         raw = []
  343.         for h in self.getallmatchingheaders(name):
  344.             if h[0] in ' \t':
  345.                 raw.append(h)
  346.             else:
  347.                 if raw:
  348.                     raw.append(', ')
  349.                 i = h.find(':')
  350.                 if i > 0:
  351.                     addr = h[i+1:]
  352.                 raw.append(addr)
  353.         alladdrs = ''.join(raw)
  354.         a = AddrlistClass(alladdrs)
  355.         return a.getaddrlist()
  356.  
  357.     def getdate(self, name):
  358.         """Retrieve a date field from a header.
  359.  
  360.         Retrieves a date field from the named header, returning a tuple
  361.         compatible with time.mktime().
  362.         """
  363.         try:
  364.             data = self[name]
  365.         except KeyError:
  366.             return None
  367.         return parsedate(data)
  368.  
  369.     def getdate_tz(self, name):
  370.         """Retrieve a date field from a header as a 10-tuple.
  371.  
  372.         The first 9 elements make up a tuple compatible with time.mktime(),
  373.         and the 10th is the offset of the poster's time zone from GMT/UTC.
  374.         """
  375.         try:
  376.             data = self[name]
  377.         except KeyError:
  378.             return None
  379.         return parsedate_tz(data)
  380.  
  381.  
  382.     # Access as a dictionary (only finds *last* header of each type):
  383.  
  384.     def __len__(self):
  385.         """Get the number of headers in a message."""
  386.         return len(self.dict)
  387.  
  388.     def __getitem__(self, name):
  389.         """Get a specific header, as from a dictionary."""
  390.         return self.dict[name.lower()]
  391.  
  392.     def __setitem__(self, name, value):
  393.         """Set the value of a header.
  394.  
  395.         Note: This is not a perfect inversion of __getitem__, because any
  396.         changed headers get stuck at the end of the raw-headers list rather
  397.         than where the altered header was.
  398.         """
  399.         del self[name] # Won't fail if it doesn't exist
  400.         self.dict[name.lower()] = value
  401.         text = name + ": " + value
  402.         lines = text.split("\n")
  403.         for line in lines:
  404.             self.headers.append(line + "\n")
  405.  
  406.     def __delitem__(self, name):
  407.         """Delete all occurrences of a specific header, if it is present."""
  408.         name = name.lower()
  409.         if not self.dict.has_key(name):
  410.             return
  411.         del self.dict[name]
  412.         name = name + ':'
  413.         n = len(name)
  414.         list = []
  415.         hit = 0
  416.         for i in range(len(self.headers)):
  417.             line = self.headers[i]
  418.             if line[:n].lower() == name:
  419.                 hit = 1
  420.             elif not line[:1].isspace():
  421.                 hit = 0
  422.             if hit:
  423.                 list.append(i)
  424.         list.reverse()
  425.         for i in list:
  426.             del self.headers[i]
  427.  
  428.     def setdefault(self, name, default=""):
  429.         lowername = name.lower()
  430.         if self.dict.has_key(lowername):
  431.             return self.dict[lowername]
  432.         else:
  433.             text = name + ": " + default
  434.             lines = text.split("\n")
  435.             for line in lines:
  436.                 self.headers.append(line + "\n")
  437.             self.dict[lowername] = default
  438.             return default
  439.  
  440.     def has_key(self, name):
  441.         """Determine whether a message contains the named header."""
  442.         return self.dict.has_key(name.lower())
  443.  
  444.     def keys(self):
  445.         """Get all of a message's header field names."""
  446.         return self.dict.keys()
  447.  
  448.     def values(self):
  449.         """Get all of a message's header field values."""
  450.         return self.dict.values()
  451.  
  452.     def items(self):
  453.         """Get all of a message's headers.
  454.  
  455.         Returns a list of name, value tuples.
  456.         """
  457.         return self.dict.items()
  458.  
  459.     def __str__(self):
  460.         str = ''
  461.         for hdr in self.headers:
  462.             str = str + hdr
  463.         return str
  464.  
  465.  
  466. # Utility functions
  467. # -----------------
  468.  
  469. # XXX Should fix unquote() and quote() to be really conformant.
  470. # XXX The inverses of the parse functions may also be useful.
  471.  
  472.  
  473. def unquote(str):
  474.     """Remove quotes from a string."""
  475.     if len(str) > 1:
  476.         if str[0] == '"' and str[-1:] == '"':
  477.             return str[1:-1]
  478.         if str[0] == '<' and str[-1:] == '>':
  479.             return str[1:-1]
  480.     return str
  481.  
  482.  
  483. def quote(str):
  484.     """Add quotes around a string."""
  485.     return str.replace('\\', '\\\\').replace('"', '\\"')
  486.  
  487.  
  488. def parseaddr(address):
  489.     """Parse an address into a (realname, mailaddr) tuple."""
  490.     a = AddressList(address)
  491.     list = a.addresslist
  492.     if not list:
  493.         return (None, None)
  494.     else:
  495.         return list[0]
  496.  
  497.  
  498. class AddrlistClass:
  499.     """Address parser class by Ben Escoto.
  500.  
  501.     To understand what this class does, it helps to have a copy of
  502.     RFC 2822 in front of you.
  503.  
  504.     http://www.faqs.org/rfcs/rfc2822.html
  505.  
  506.     Note: this class interface is deprecated and may be removed in the future.
  507.     Use rfc822.AddressList instead.
  508.     """
  509.  
  510.     def __init__(self, field):
  511.         """Initialize a new instance.
  512.  
  513.         `field' is an unparsed address header field, containing one or more
  514.         addresses.
  515.         """
  516.         self.specials = '()<>@,:;.\"[]'
  517.         self.pos = 0
  518.         self.LWS = ' \t'
  519.         self.CR = '\r\n'
  520.         self.atomends = self.specials + self.LWS + self.CR
  521.         # Note that RFC 2822 now specifies `.' as obs-phrase, meaning that it
  522.         # is obsolete syntax.  RFC 2822 requires that we recognize obsolete
  523.         # syntax, so allow dots in phrases.
  524.         self.phraseends = self.atomends.replace('.', '')
  525.         self.field = field
  526.         self.commentlist = []
  527.  
  528.     def gotonext(self):
  529.         """Parse up to the start of the next address."""
  530.         while self.pos < len(self.field):
  531.             if self.field[self.pos] in self.LWS + '\n\r':
  532.                 self.pos = self.pos + 1
  533.             elif self.field[self.pos] == '(':
  534.                 self.commentlist.append(self.getcomment())
  535.             else: break
  536.  
  537.     def getaddrlist(self):
  538.         """Parse all addresses.
  539.  
  540.         Returns a list containing all of the addresses.
  541.         """
  542.         result = []
  543.         while 1:
  544.             ad = self.getaddress()
  545.             if ad:
  546.                 result += ad
  547.             else:
  548.                 break
  549.         return result
  550.  
  551.     def getaddress(self):
  552.         """Parse the next address."""
  553.         self.commentlist = []
  554.         self.gotonext()
  555.  
  556.         oldpos = self.pos
  557.         oldcl = self.commentlist
  558.         plist = self.getphraselist()
  559.  
  560.         self.gotonext()
  561.         returnlist = []
  562.  
  563.         if self.pos >= len(self.field):
  564.             # Bad email address technically, no domain.
  565.             if plist:
  566.                 returnlist = [(' '.join(self.commentlist), plist[0])]
  567.  
  568.         elif self.field[self.pos] in '.@':
  569.             # email address is just an addrspec
  570.             # this isn't very efficient since we start over
  571.             self.pos = oldpos
  572.             self.commentlist = oldcl
  573.             addrspec = self.getaddrspec()
  574.             returnlist = [(' '.join(self.commentlist), addrspec)]
  575.  
  576.         elif self.field[self.pos] == ':':
  577.             # address is a group
  578.             returnlist = []
  579.  
  580.             fieldlen = len(self.field)
  581.             self.pos = self.pos + 1
  582.             while self.pos < len(self.field):
  583.                 self.gotonext()
  584.                 if self.pos < fieldlen and self.field[self.pos] == ';':
  585.                     self.pos = self.pos + 1
  586.                     break
  587.                 returnlist = returnlist + self.getaddress()
  588.  
  589.         elif self.field[self.pos] == '<':
  590.             # Address is a phrase then a route addr
  591.             routeaddr = self.getrouteaddr()
  592.  
  593.             if self.commentlist:
  594.                 returnlist = [(' '.join(plist) + ' (' + \
  595.                          ' '.join(self.commentlist) + ')', routeaddr)]
  596.             else: returnlist = [(' '.join(plist), routeaddr)]
  597.  
  598.         else:
  599.             if plist:
  600.                 returnlist = [(' '.join(self.commentlist), plist[0])]
  601.             elif self.field[self.pos] in self.specials:
  602.                 self.pos = self.pos + 1
  603.  
  604.         self.gotonext()
  605.         if self.pos < len(self.field) and self.field[self.pos] == ',':
  606.             self.pos = self.pos + 1
  607.         return returnlist
  608.  
  609.     def getrouteaddr(self):
  610.         """Parse a route address (Return-path value).
  611.  
  612.         This method just skips all the route stuff and returns the addrspec.
  613.         """
  614.         if self.field[self.pos] != '<':
  615.             return
  616.  
  617.         expectroute = 0
  618.         self.pos = self.pos + 1
  619.         self.gotonext()
  620.         adlist = ""
  621.         while self.pos < len(self.field):
  622.             if expectroute:
  623.                 self.getdomain()
  624.                 expectroute = 0
  625.             elif self.field[self.pos] == '>':
  626.                 self.pos = self.pos + 1
  627.                 break
  628.             elif self.field[self.pos] == '@':
  629.                 self.pos = self.pos + 1
  630.                 expectroute = 1
  631.             elif self.field[self.pos] == ':':
  632.                 self.pos = self.pos + 1
  633.             else:
  634.                 adlist = self.getaddrspec()
  635.                 self.pos = self.pos + 1
  636.                 break
  637.             self.gotonext()
  638.  
  639.         return adlist
  640.  
  641.     def getaddrspec(self):
  642.         """Parse an RFC 2822 addr-spec."""
  643.         aslist = []
  644.  
  645.         self.gotonext()
  646.         while self.pos < len(self.field):
  647.             if self.field[self.pos] == '.':
  648.                 aslist.append('.')
  649.                 self.pos = self.pos + 1
  650.             elif self.field[self.pos] == '"':
  651.                 aslist.append('"%s"' % self.getquote())
  652.             elif self.field[self.pos] in self.atomends:
  653.                 break
  654.             else: aslist.append(self.getatom())
  655.             self.gotonext()
  656.  
  657.         if self.pos >= len(self.field) or self.field[self.pos] != '@':
  658.             return ''.join(aslist)
  659.  
  660.         aslist.append('@')
  661.         self.pos = self.pos + 1
  662.         self.gotonext()
  663.         return ''.join(aslist) + self.getdomain()
  664.  
  665.     def getdomain(self):
  666.         """Get the complete domain name from an address."""
  667.         sdlist = []
  668.         while self.pos < len(self.field):
  669.             if self.field[self.pos] in self.LWS:
  670.                 self.pos = self.pos + 1
  671.             elif self.field[self.pos] == '(':
  672.                 self.commentlist.append(self.getcomment())
  673.             elif self.field[self.pos] == '[':
  674.                 sdlist.append(self.getdomainliteral())
  675.             elif self.field[self.pos] == '.':
  676.                 self.pos = self.pos + 1
  677.                 sdlist.append('.')
  678.             elif self.field[self.pos] in self.atomends:
  679.                 break
  680.             else: sdlist.append(self.getatom())
  681.         return ''.join(sdlist)
  682.  
  683.     def getdelimited(self, beginchar, endchars, allowcomments = 1):
  684.         """Parse a header fragment delimited by special characters.
  685.  
  686.         `beginchar' is the start character for the fragment.  If self is not
  687.         looking at an instance of `beginchar' then getdelimited returns the
  688.         empty string.
  689.  
  690.         `endchars' is a sequence of allowable end-delimiting characters.
  691.         Parsing stops when one of these is encountered.
  692.  
  693.         If `allowcomments' is non-zero, embedded RFC 2822 comments are allowed
  694.         within the parsed fragment.
  695.         """
  696.         if self.field[self.pos] != beginchar:
  697.             return ''
  698.  
  699.         slist = ['']
  700.         quote = 0
  701.         self.pos = self.pos + 1
  702.         while self.pos < len(self.field):
  703.             if quote == 1:
  704.                 slist.append(self.field[self.pos])
  705.                 quote = 0
  706.             elif self.field[self.pos] in endchars:
  707.                 self.pos = self.pos + 1
  708.                 break
  709.             elif allowcomments and self.field[self.pos] == '(':
  710.                 slist.append(self.getcomment())
  711.             elif self.field[self.pos] == '\\':
  712.                 quote = 1
  713.             else:
  714.                 slist.append(self.field[self.pos])
  715.             self.pos = self.pos + 1
  716.  
  717.         return ''.join(slist)
  718.  
  719.     def getquote(self):
  720.         """Get a quote-delimited fragment from self's field."""
  721.         return self.getdelimited('"', '"\r', 0)
  722.  
  723.     def getcomment(self):
  724.         """Get a parenthesis-delimited fragment from self's field."""
  725.         return self.getdelimited('(', ')\r', 1)
  726.  
  727.     def getdomainliteral(self):
  728.         """Parse an RFC 2822 domain-literal."""
  729.         return '[%s]' % self.getdelimited('[', ']\r', 0)
  730.  
  731.     def getatom(self, atomends=None):
  732.         """Parse an RFC 2822 atom.
  733.  
  734.         Optional atomends specifies a different set of end token delimiters
  735.         (the default is to use self.atomends).  This is used e.g. in
  736.         getphraselist() since phrase endings must not include the `.' (which
  737.         is legal in phrases)."""
  738.         atomlist = ['']
  739.         if atomends is None:
  740.             atomends = self.atomends
  741.  
  742.         while self.pos < len(self.field):
  743.             if self.field[self.pos] in atomends:
  744.                 break
  745.             else: atomlist.append(self.field[self.pos])
  746.             self.pos = self.pos + 1
  747.  
  748.         return ''.join(atomlist)
  749.  
  750.     def getphraselist(self):
  751.         """Parse a sequence of RFC 2822 phrases.
  752.  
  753.         A phrase is a sequence of words, which are in turn either RFC 2822
  754.         atoms or quoted-strings.  Phrases are canonicalized by squeezing all
  755.         runs of continuous whitespace into one space.
  756.         """
  757.         plist = []
  758.  
  759.         while self.pos < len(self.field):
  760.             if self.field[self.pos] in self.LWS:
  761.                 self.pos = self.pos + 1
  762.             elif self.field[self.pos] == '"':
  763.                 plist.append(self.getquote())
  764.             elif self.field[self.pos] == '(':
  765.                 self.commentlist.append(self.getcomment())
  766.             elif self.field[self.pos] in self.phraseends:
  767.                 break
  768.             else:
  769.                 plist.append(self.getatom(self.phraseends))
  770.  
  771.         return plist
  772.  
  773. class AddressList(AddrlistClass):
  774.     """An AddressList encapsulates a list of parsed RFC 2822 addresses."""
  775.     def __init__(self, field):
  776.         AddrlistClass.__init__(self, field)
  777.         if field:
  778.             self.addresslist = self.getaddrlist()
  779.         else:
  780.             self.addresslist = []
  781.  
  782.     def __len__(self):
  783.         return len(self.addresslist)
  784.  
  785.     def __str__(self):
  786.         return ", ".join(map(dump_address_pair, self.addresslist))
  787.  
  788.     def __add__(self, other):
  789.         # Set union
  790.         newaddr = AddressList(None)
  791.         newaddr.addresslist = self.addresslist[:]
  792.         for x in other.addresslist:
  793.             if not x in self.addresslist:
  794.                 newaddr.addresslist.append(x)
  795.         return newaddr
  796.  
  797.     def __iadd__(self, other):
  798.         # Set union, in-place
  799.         for x in other.addresslist:
  800.             if not x in self.addresslist:
  801.                 self.addresslist.append(x)
  802.         return self
  803.  
  804.     def __sub__(self, other):
  805.         # Set difference
  806.         newaddr = AddressList(None)
  807.         for x in self.addresslist:
  808.             if not x in other.addresslist:
  809.                 newaddr.addresslist.append(x)
  810.         return newaddr
  811.  
  812.     def __isub__(self, other):
  813.         # Set difference, in-place
  814.         for x in other.addresslist:
  815.             if x in self.addresslist:
  816.                 self.addresslist.remove(x)
  817.         return self
  818.  
  819.     def __getitem__(self, index):
  820.         # Make indexing, slices, and 'in' work
  821.         return self.addresslist[index]
  822.  
  823. def dump_address_pair(pair):
  824.     """Dump a (name, address) pair in a canonicalized form."""
  825.     if pair[0]:
  826.         return '"' + pair[0] + '" <' + pair[1] + '>'
  827.     else:
  828.         return pair[1]
  829.  
  830. # Parse a date field
  831.  
  832. _monthnames = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul',
  833.                'aug', 'sep', 'oct', 'nov', 'dec',
  834.                'january', 'february', 'march', 'april', 'may', 'june', 'july',
  835.                'august', 'september', 'october', 'november', 'december']
  836. _daynames = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']
  837.  
  838. # The timezone table does not include the military time zones defined
  839. # in RFC822, other than Z.  According to RFC1123, the description in
  840. # RFC822 gets the signs wrong, so we can't rely on any such time
  841. # zones.  RFC1123 recommends that numeric timezone indicators be used
  842. # instead of timezone names.
  843.  
  844. _timezones = {'UT':0, 'UTC':0, 'GMT':0, 'Z':0,
  845.               'AST': -400, 'ADT': -300,  # Atlantic (used in Canada)
  846.               'EST': -500, 'EDT': -400,  # Eastern
  847.               'CST': -600, 'CDT': -500,  # Central
  848.               'MST': -700, 'MDT': -600,  # Mountain
  849.               'PST': -800, 'PDT': -700   # Pacific
  850.               }
  851.  
  852.  
  853. def parsedate_tz(data):
  854.     """Convert a date string to a time tuple.
  855.  
  856.     Accounts for military timezones.
  857.     """
  858.     if not data:
  859.         return None
  860.     data = data.split()
  861.     if data[0][-1] in (',', '.') or data[0].lower() in _daynames:
  862.         # There's a dayname here. Skip it
  863.         del data[0]
  864.     if len(data) == 3: # RFC 850 date, deprecated
  865.         stuff = data[0].split('-')
  866.         if len(stuff) == 3:
  867.             data = stuff + data[1:]
  868.     if len(data) == 4:
  869.         s = data[3]
  870.         i = s.find('+')
  871.         if i > 0:
  872.             data[3:] = [s[:i], s[i+1:]]
  873.         else:
  874.             data.append('') # Dummy tz
  875.     if len(data) < 5:
  876.         return None
  877.     data = data[:5]
  878.     [dd, mm, yy, tm, tz] = data
  879.     mm = mm.lower()
  880.     if not mm in _monthnames:
  881.         dd, mm = mm, dd.lower()
  882.         if not mm in _monthnames:
  883.             return None
  884.     mm = _monthnames.index(mm)+1
  885.     if mm > 12: mm = mm - 12
  886.     if dd[-1] == ',':
  887.         dd = dd[:-1]
  888.     i = yy.find(':')
  889.     if i > 0:
  890.         yy, tm = tm, yy
  891.     if yy[-1] == ',':
  892.         yy = yy[:-1]
  893.     if not yy[0].isdigit():
  894.         yy, tz = tz, yy
  895.     if tm[-1] == ',':
  896.         tm = tm[:-1]
  897.     tm = tm.split(':')
  898.     if len(tm) == 2:
  899.         [thh, tmm] = tm
  900.         tss = '0'
  901.     elif len(tm) == 3:
  902.         [thh, tmm, tss] = tm
  903.     else:
  904.         return None
  905.     try:
  906.         yy = int(yy)
  907.         dd = int(dd)
  908.         thh = int(thh)
  909.         tmm = int(tmm)
  910.         tss = int(tss)
  911.     except ValueError:
  912.         return None
  913.     tzoffset = None
  914.     tz = tz.upper()
  915.     if _timezones.has_key(tz):
  916.         tzoffset = _timezones[tz]
  917.     else:
  918.         try:
  919.             tzoffset = int(tz)
  920.         except ValueError:
  921.             pass
  922.     # Convert a timezone offset into seconds ; -0500 -> -18000
  923.     if tzoffset:
  924.         if tzoffset < 0:
  925.             tzsign = -1
  926.             tzoffset = -tzoffset
  927.         else:
  928.             tzsign = 1
  929.         tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60)
  930.     tuple = (yy, mm, dd, thh, tmm, tss, 0, 0, 0, tzoffset)
  931.     return tuple
  932.  
  933.  
  934. def parsedate(data):
  935.     """Convert a time string to a time tuple."""
  936.     t = parsedate_tz(data)
  937.     if type(t) == type( () ):
  938.         return t[:9]
  939.     else: return t
  940.  
  941.  
  942. def mktime_tz(data):
  943.     """Turn a 10-tuple as returned by parsedate_tz() into a UTC timestamp."""
  944.     if data[9] is None:
  945.         # No zone info, so localtime is better assumption than GMT
  946.         return time.mktime(data[:8] + (-1,))
  947.     else:
  948.         t = time.mktime(data[:8] + (0,))
  949.         return t - data[9] - time.timezone
  950.  
  951. def formatdate(timeval=None):
  952.     """Returns time format preferred for Internet standards.
  953.  
  954.     Sun, 06 Nov 1994 08:49:37 GMT  ; RFC 822, updated by RFC 1123
  955.  
  956.     According to RFC 1123, day and month names must always be in
  957.     English.  If not for that, this code could use strftime().  It
  958.     can't because strftime() honors the locale and could generated
  959.     non-English names.
  960.     """
  961.     if timeval is None:
  962.         timeval = time.time()
  963.     timeval = time.gmtime(timeval)
  964.     return "%s, %02d %s %04d %02d:%02d:%02d GMT" % (
  965.             ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"][timeval[6]],
  966.             timeval[2],
  967.             ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
  968.              "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"][timeval[1]-1],
  969.                                 timeval[0], timeval[3], timeval[4], timeval[5])
  970.  
  971.  
  972. # When used as script, run a small test program.
  973. # The first command line argument must be a filename containing one
  974. # message in RFC-822 format.
  975.  
  976. if __name__ == '__main__':
  977.     import sys, os
  978.     file = os.path.join(os.environ['HOME'], 'Mail/inbox/1')
  979.     if sys.argv[1:]: file = sys.argv[1]
  980.     f = open(file, 'r')
  981.     m = Message(f)
  982.     print 'From:', m.getaddr('from')
  983.     print 'To:', m.getaddrlist('to')
  984.     print 'Subject:', m.getheader('subject')
  985.     print 'Date:', m.getheader('date')
  986.     date = m.getdate_tz('date')
  987.     tz = date[-1]
  988.     date = time.localtime(mktime_tz(date))
  989.     if date:
  990.         print 'ParsedDate:', time.asctime(date),
  991.         hhmmss = tz
  992.         hhmm, ss = divmod(hhmmss, 60)
  993.         hh, mm = divmod(hhmm, 60)
  994.         print "%+03d%02d" % (hh, mm),
  995.         if ss: print ".%02d" % ss,
  996.         print
  997.     else:
  998.         print 'ParsedDate:', None
  999.     m.rewindbody()
  1000.     n = 0
  1001.     while f.readline():
  1002.         n = n + 1
  1003.     print 'Lines:', n
  1004.     print '-'*70
  1005.     print 'len =', len(m)
  1006.     if m.has_key('Date'): print 'Date =', m['Date']
  1007.     if m.has_key('X-Nonsense'): pass
  1008.     print 'keys =', m.keys()
  1009.     print 'values =', m.values()
  1010.     print 'items =', m.items()
  1011.